home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970626-19970929 / 000256_news@newsmaster….columbia.edu _Wed Aug 27 18:21:06 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id SAA04984
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 27 Aug 1997 18:21:02 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id SAA15882
  7.     for kermit.misc@watsun; Wed, 27 Aug 1997 18:21:01 -0400 (EDT)
  8. Path: news.columbia.edu!panix!howland.erols.net!newshub2.home.com!news.home.com!su-news-hub1.bbnplanet.com!news.bbnplanet.com!news.Stanford.EDU!nntp.Stanford.EDU!Cup.DSG.Stanford.EDU!jonathan
  9. From: jonathan@DSG.Stanford.EDU (Jonathan Stone)
  10. Newsgroups: comp.protocols.kermit.misc,comp.unix.questions,comp.unix.admin,comp.unix.misc,comp.unix.ultrix,comp.unix.shell
  11. Subject: Re: Do not get connected at 33.6K
  12. Date: 27 Aug 1997 22:04:29 GMT
  13. Organization: Stanford Distributed Systems Group
  14. Lines: 54
  15. Sender: jonathan@Cup.DSG.Stanford.EDU (Jonathan Stone)
  16. Message-ID: <5u289d$3qi$1@nntp.Stanford.EDU>
  17. References: <5tsn5b$o9q@newslink.runet.edu> <5tupoe$gra$1@apakabar.cc.columbia.edu> <5u0g7d$f6o@newslink.runet.edu> <5u1fh6$n39$1@apakabar.cc.columbia.edu> <5u1mrf$il7@usenet.srv.cis.pitt.edu>
  18. Reply-To: jonathan@DSG.Stanford.EDU
  19. NNTP-Posting-Host: cup.dsg.stanford.edu
  20. Xref: news.columbia.edu comp.protocols.kermit.misc:7572 comp.unix.questions:116074 comp.unix.admin:70237 comp.unix.misc:35282 comp.unix.ultrix:31801 comp.unix.shell:54283
  21.  
  22. In article <5u1mrf$il7@usenet.srv.cis.pitt.edu>, geest3+@pitt.edu (Gregg E Economou) writes:
  23. > In article <5u1fh6$n39$1@apakabar.cc.columbia.edu>,
  24. > Frank da Cruz <fdc@watsun.cc.columbia.edu> wrote:
  25. > >RTS/CTS is the only kind of flow control that really works on a high-speed
  26. > >modem connection, but Ultrix does not support it.  Therefore you have to use
  27.  
  28.  > the hardware doesent support it on a DS2100-3100 but afaik ultrix supports 
  29. > it. Now, depending on the hardware, you dont have support for 38400
  30. > baud connections. Also, if this is on a DS5000/xxx then you should check
  31. > the 19200-38400 high speed external clock generation setting, 
  32. > because speeds above 9600 are supported by an external clock supplying
  33. > timing to the two "serial" lines going out of the DZ. 
  34.  
  35. Sorry, this is *still* not quite right.
  36.  
  37.    * The four-port dz-11 clone chip on 2100s and 3100s doesn't
  38.      support RTS/CTS  at all.
  39.  
  40.    * The  5000/200 supports full modem control on both RS-232
  41.      DB-25 bulkheads.
  42.  
  43.    * The dc7085 chip does *NOT*, repeat *NOT* do 19200 baud.
  44.      It acutally does 19600 or thereabouts.  (The exta/extb clock
  45.      is not quite right, perhaps for bug compatiblity with DZ-11s).
  46.      This doesn't always work with true 19200 devices.
  47.  
  48.  
  49.    * Ultrix does *NOT* support 38400 on the dz-clone ports on
  50.      the 5000/240.  Switching between 19200 and 38400 is done
  51.      by toggling a bit on the system-control chip on the motherboard.
  52.      That changes the meaning of the `19200' speed setting for
  53.      all DC ports, so that they do 38400 when 19200 is selected.
  54.  
  55.      The only way to get 38400 on a 5000/200 with Ultrix is to frob
  56.      the system interrupt controller-register bit from the PROM
  57.      before booting, and then hope that Ultrix never sets it back:)
  58.  
  59. The preferred Ultrix software interface for ttys is POSIX-compatible
  60. termios.  I have no idea what C-Kermit uses.
  61.  
  62. However -- I suspect that the original poster has a
  63. 5000/{20,25,33,50}, 5000/{120,125,133,150}, or a 5000/{240,260}.
  64.  
  65. These machines have standard Zilog 8530 SCC chips (or clones), and can
  66. do up to 57.6 before the BRG clock gets too low to reliably sample bits.
  67. Ultrix supports up to 38.4. 
  68.  
  69. NetBSD, OTOH, supports up to 230.6, but you need synch clocking.
  70.  
  71. (DECstation 5000s can output asynch up to 115.2 perfectly, but cannot
  72. reliably unframe RS-232 at speeds above 57600, because the SCC clock
  73. multiplier is too low to reliably sample the start bits at that
  74. speed.)